home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 054a / setsbv.zip / MAKEFILE next >
Text File  |  1993-03-13  |  266b  |  13 lines

  1. !include <ntwin32.mak>
  2.  
  3. OBJS=setsbvol.obj
  4.  
  5. all: setsbvol.exe
  6.  
  7. .c.obj:
  8.     $(cc) $(cflags) -DDEBUG -Ge -Op -nologo $(cvars) $*.c
  9.  
  10. setsbvol.exe: $(OBJS)
  11.     $(cvtobj) $(cvtdebug) *.obj
  12.     $(link) $(guiflags) winmm.lib -out:setsbvol.exe $(OBJS) $(guilibs)
  13.